home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Developer / StopWatch / Source / SessionEditor.h < prev    next >
Encoding:
Text File  |  1993-07-23  |  449 b   |  30 lines

  1. /*
  2.  * For legal stuff see the file COPYRIGHT
  3.  */
  4. #import <appkit/appkit.h>
  5. #import "Session.h"
  6.  
  7. @interface SessionEditor:Object
  8. {
  9.   id    panel;
  10.   id    form;
  11.   id    durationField;
  12.   id    startDateField;
  13.   id    startTimeField;
  14.   id    descriptionField;
  15. }
  16.  
  17. - init;
  18. - free;
  19. - (Session *)editItem:(Session *)session;
  20.  
  21. - ok:sender;
  22. - cancel:sender;
  23.  
  24. - (int)duration;
  25. - (const char *)startDateString;
  26. - (const char *)startTimeString;
  27. - (const char *)description;
  28.  
  29. @end
  30.